Python project template
Python project template
Table of Content
Python project template#
This post explain project structure and how to create github template repository
Other post show how to config virtual environment install package unittest and tools usage
- part 1: this post
- part 2: venv and pip
- part 3: unitest using pytest
- Tools:
- Demo: Crate project
- Add projects documentation
project tree#
py_template/
├── .vscode
├── docs
├── Makefile
├── mkdocs.yml
├── pyproject.toml
├── py_template
├── README.md
├── .pylintrc
├── setup.cfg
├── setup.py
├── tests
| └── requirements.txt
├── venv
└── version.py
| file name | description |
|---|---|
| Makefile | automate validation and running tests |
| .pylintrc | pylint rules |
GitHUB#
Set project as a Template

my python projct template on github